home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / src / expat-src.lha / expat-1.95.2 / config.h next >
Encoding:
C/C++ Source or Header  |  2001-10-14  |  1.2 KB  |  54 lines

  1. /* config.h.  Generated automatically by configure.  */
  2. /* config.h.in.  Generated automatically from configure.in by autoheader.  */
  3.  
  4. /* Define to empty if the keyword does not work.  */
  5. /* #undef const */
  6.  
  7. /* Define if you have a working `mmap' system call.  */
  8. /* #undef HAVE_MMAP */
  9.  
  10. /* Define to `long' if <sys/types.h> doesn't define.  */
  11. /* #undef off_t */
  12.  
  13. /* Define to `unsigned' if <sys/types.h> doesn't define.  */
  14. /* #undef size_t */
  15.  
  16. /* Define if you have the ANSI C header files.  */
  17. #define STDC_HEADERS 1
  18.  
  19. /* Define if you have the bcopy function.  */
  20. #define HAVE_BCOPY 1
  21.  
  22. /* Define if you have the getpagesize function.  */
  23. #define HAVE_GETPAGESIZE 1
  24.  
  25. /* Define if you have the memmove function.  */
  26. #define HAVE_MEMMOVE 1
  27.  
  28. /* Define if you have the <fcntl.h> header file.  */
  29. #define HAVE_FCNTL_H 1
  30.  
  31. /* Define if you have the <unistd.h> header file.  */
  32. #define HAVE_UNISTD_H 1
  33.  
  34. /* whether byteorder is bigendian */
  35. #define WORDS_BIGENDIAN 1
  36.  
  37. /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
  38. #define BYTEORDER 4321
  39.  
  40.  
  41. #define XML_NS
  42. #define XML_DTD
  43.  
  44. #define XML_CONTEXT_BYTES 1024
  45.  
  46. #ifndef HAVE_MEMMOVE
  47. #ifdef HAVE_BCOPY
  48. #define memmove(d,s,l) bcopy((s),(d),(l))
  49. #else
  50. #define memmove(d,s,l) ;punting on memmove;
  51. #endif
  52.  
  53. #endif
  54.